page.scss 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. .profile-box {
  2. padding: .44rem 0 .6rem;
  3. min-height: 100vh;
  4. background-color: #1f1f1f;
  5. -webkit-box-sizing: border-box;
  6. box-sizing: border-box;
  7. display: flex;
  8. flex-direction: column;
  9. .userContent {
  10. background: -webkit-gradient(linear, left top, left bottom, from(#ffaa30), to(#ffe6be));
  11. background: -webkit-linear-gradient(top, #ffaa30, #ffe6be);
  12. background: -o-linear-gradient(top, #ffaa30 0, #ffe6be 100%);
  13. background: linear-gradient(180deg, #ffaa30, #ffe6be);
  14. min-height: .93rem;
  15. }
  16. .userInfo {
  17. display: flex;
  18. -webkit-box-pack: justify;
  19. -ms-flex-pack: justify;
  20. justify-content: space-between;
  21. -webkit-box-align: start;
  22. -ms-flex-align: start;
  23. align-items: flex-start;
  24. height: .56rem;
  25. padding: .11rem .18rem;
  26. -webkit-box-sizing: border-box;
  27. box-sizing: border-box;
  28. & > div {
  29. display: flex;
  30. -webkit-box-pack: justify;
  31. -ms-flex-pack: justify;
  32. justify-content: space-between;
  33. -webkit-box-align: center;
  34. -ms-flex-align: center;
  35. align-items: center;
  36. height: .36rem;
  37. font-size: .14rem;
  38. color: #000;
  39. .bgImg {
  40. width: .36rem;
  41. height: .36rem;
  42. margin-right: .1rem;
  43. background-color: transparent;
  44. background: url('/img/logo.webp') no-repeat center;
  45. background-size: 100% 100%;
  46. &.default {
  47. background-size: 80% 80%;
  48. }
  49. }
  50. & > div {
  51. display: -webkit-box;
  52. display: -ms-flexbox;
  53. display: flex;
  54. -webkit-box-orient: vertical;
  55. -webkit-box-direction: normal;
  56. -ms-flex-direction: column;
  57. flex-direction: column;
  58. height: .36rem;
  59. -webkit-box-pack: justify;
  60. -ms-flex-pack: justify;
  61. justify-content: space-between;
  62. }
  63. .phone {
  64. font-size: .12rem;
  65. }
  66. }
  67. .goto {
  68. display: flex;
  69. align-items: center;
  70. cursor: pointer;
  71. }
  72. .iconfont {
  73. font-size: .16rem;
  74. font-weight: 700;
  75. -webkit-transform: rotate(180deg);
  76. -ms-transform: rotate(180deg);
  77. transform: rotate(180deg);
  78. margin-left: .04rem;
  79. }
  80. }
  81. .coin {
  82. display: flex;
  83. justify-content: space-between;
  84. padding: .07rem 0 .3rem;
  85. margin: 0 .18rem;
  86. border-top: .01rem dotted #d9a801;
  87. & > div {
  88. display: flex;
  89. -webkit-box-align: center;
  90. -ms-flex-align: center;
  91. align-items: center;
  92. width: 50%;
  93. -webkit-box-sizing: border-box;
  94. box-sizing: border-box;
  95. &:first-child {
  96. border-right: .01rem dotted #d9a801;
  97. }
  98. .iconfont {
  99. margin: 0 .08rem;
  100. font-size: .18rem;
  101. color: #000;
  102. &.icon-gift2 {
  103. width: .32rem;
  104. }
  105. }
  106. & > div {
  107. flex: 1;
  108. display: flex;
  109. flex-direction: column;
  110. }
  111. div {
  112. span {
  113. font-size: .12rem;
  114. color: #333;
  115. display: flex;
  116. align-items: center;
  117. .a {
  118. width: .14rem;
  119. margin-left: .03rem;
  120. }
  121. }
  122. .num {
  123. width: 100%;
  124. height: auto;
  125. display: flex;
  126. span {
  127. font-size: .14rem;
  128. &:first-child {
  129. margin-right: .04rem;
  130. }
  131. }
  132. }
  133. }
  134. }
  135. }
  136. .link {
  137. width: 100%;
  138. height: auto;
  139. margin-top: -.22rem;
  140. display: flex;
  141. align-items: center;
  142. justify-content: center;
  143. span {
  144. width: 1.63rem;
  145. height: .44rem;
  146. line-height: .44rem;
  147. background: -o-linear-gradient(top, #ff9323, #ff6a01);
  148. background: linear-gradient(180deg, #ff9323, #ff6a01);
  149. border-radius: .04rem;
  150. color: #fff;
  151. font-size: .14rem;
  152. margin: 0 .08rem;
  153. text-align: center;
  154. }
  155. }
  156. .logOut {
  157. color: #fff;
  158. font-size: .12rem;
  159. width: 1rem;
  160. height: .34rem;
  161. line-height: .34rem;
  162. display: block;
  163. margin: .1rem auto .3rem;
  164. text-align: center;
  165. cursor: pointer;
  166. }
  167. }